From: Cristián Maureira-Fredes Date: Thu, 19 Sep 2024 07:25:05 +0000 (+0200) Subject: Fix condition to allow 3.13 for wheel creation X-Git-Tag: archive/raspbian/5.15.18-1+rpi1^2~4 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=e58e55121bea5435a04feb1dee03daf97c8d7984;p=pyside2.git Fix condition to allow 3.13 for wheel creation Task-number: PYSIDE-2751 Pick-to: 6.8 Change-Id: Iaf6e914bf798371faf5066f4a2d70fe3e2c124e5 Reviewed-by: Christian Tismer (cherry picked from commit a86135803fe51e5702444f8b7dcb2a4dccd3a209) Gbp-Pq: Name Fix-condition-to-allow-3.13-for-wheel-creation.patch --- diff --git a/build_scripts/config.py b/build_scripts/config.py index 0e7f9fd..27844ee 100644 --- a/build_scripts/config.py +++ b/build_scripts/config.py @@ -139,7 +139,7 @@ class Config(object): setup_kwargs['zip_safe'] = False setup_kwargs['cmdclass'] = cmd_class_dict setup_kwargs['version'] = package_version - setup_kwargs['python_requires'] = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.13" + setup_kwargs['python_requires'] = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.14" if quiet: # Tells distutils / setuptools to be quiet, and only print warnings or errors.